home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts Interactive 4 / CARTS4.iso / mac / MiniCad 6.0.1 demo / MiniCad 6.0.1 Demo / MiniCad 6.0.1 Demo.rsrc / STR#_7020.txt < prev    next >
Text File  |  1996-03-22  |  2KB  |  90 lines

  1. Returns the status of the specified preference item.
  2.  
  3. GetPref(prefIndex:INTEGER;VAR status:BOOLEAN);
  4.  
  5. Returns the default wall width setting of the file.
  6.  
  7. GetWallWidth:REAL;
  8.  
  9. Returns handle to active symbol
  10. definition.
  11.  
  12. ActSymDef : HANDLE;
  13.  
  14. Returns visibility status of layer connected to h.
  15.  
  16. GetLVis(h : Handle) : INTEGER;
  17.  
  18. Returns the current fill background color.
  19.  
  20. FFillBack(VAR Red, Green, Blue : LONGINT);
  21.  
  22. Returns the current fill foreground color.
  23.  
  24. FFillFore(VAR Red, Green, Blue : LONGINT);
  25.  
  26. Returns the current pen background color.
  27.  
  28. FPenBack(VAR Red, Green, Blue : LONGINT);
  29.  
  30. Returns the current pen foreground color.
  31.  
  32. FPenFore(VAR Red, Green, Blue : LONGINT);
  33.  
  34. Returns the current fill pattern for the graphic pen.
  35.  
  36. FPenPat : INTEGER;
  37.  
  38. Returns the current pen size, in mils.
  39.  
  40. FPenSize : INTEGER;
  41.  
  42. Returns the current fill pattern.
  43.  
  44. FFillPat : INTEGER;
  45.  
  46. Returns the current active marker style.
  47.  
  48. FMarker(VAR style: INTEGER; VAR size:REAL; VAR angle:INTEGER);
  49.  
  50. Returns the current origin location relative to the center of the page.
  51.  
  52. GetOrigin(VAR X, Y : REAL);
  53.  
  54. Returns visibility status of class.
  55.  
  56. GetCVis(ClassName:STRING);
  57.  
  58. Returns the object class stored in the object class list specified by Index.
  59.  
  60. ClassList(Index : INTEGER;) : STRING;
  61.  
  62. Returns the number of classes in the current active drawing.
  63.  
  64. ClassNum : INTEGER;
  65.  
  66. Returns the name of the active class of the drawing.
  67.  
  68. ActiveClass:STRING;
  69.  
  70. Returns the object name stored in the object name list specified by Index.
  71.  
  72. NameList(Index : INTEGER) : STRING;
  73.  
  74. Returns the number of names in the current active drawing.
  75.  
  76. NameNum : INTEGER;
  77.  
  78. Returns the current number of symbols in the library of the active drawing.
  79.  
  80. SymDefNum : INTEGER;
  81.  
  82. Returns the current number of layers in the active drawing.
  83.  
  84. NumLayers : INTEGER;
  85.  
  86. Returns the current file name of the active drawing.
  87.  
  88. GetFName : STRING;
  89.  
  90.